home *** CD-ROM | disk | FTP | other *** search
/ The American Nation / Resource Pro - The American Nation.iso / pc / data1.cab / Database_Files / ResourcePro.exe / launchpd.dxr / 00023_Rollover Script.ls < prev    next >
Encoding:
Text File  |  2000-11-28  |  645 b   |  23 lines

  1. on mouseEnter me
  2.   if not (the mouseDown) then
  3.     set mname to the name of the member of sprite the currentSpriteNum
  4.     delete char -30000 of mname
  5.     set the member of sprite the currentSpriteNum to mname & "r"
  6.     updateStage()
  7.   end if
  8. end
  9.  
  10. on mouseLeave me
  11.   set mname to the name of the member of sprite the currentSpriteNum
  12.   delete char -30000 of mname
  13.   set the member of sprite the currentSpriteNum to mname & "n"
  14.   updateStage()
  15. end
  16.  
  17. on mouseDown me
  18.   set mname to the name of the member of sprite the currentSpriteNum
  19.   delete char -30000 of mname
  20.   set the member of sprite the currentSpriteNum to mname & "n"
  21.   updateStage()
  22. end
  23.